home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 05.zip / BS1 part 5 / SASC_6.0_Disk_7.adf / Source_And_Examples / examples / reslib / mylib.c < prev    next >
Encoding:
Text File  |  1992-07-30  |  149 b   |  13 lines

  1. int b = 0;
  2.  
  3. __asm __saveds LIBtest1(void)
  4. {
  5.         return(b);
  6. }
  7.  
  8. __asm __saveds LIBtest2(register __d1 int a)
  9. {
  10.         b = a;
  11.         return(b);
  12. }
  13.